home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gxcspace.h < prev    next >
C/C++ Source or Header  |  1997-03-01  |  6KB  |  173 lines

  1. /* Copyright (C) 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxcspace.h */
  20. /* Implementation of color spaces */
  21.  
  22. #ifndef gxcspace_INCLUDED
  23. #  define gxcspace_INCLUDED
  24.  
  25. #include "gscspace.h"        /* client interface */
  26. #include "gsccolor.h"
  27. #include "gscsel.h"
  28. #include "gsstruct.h"        /* needed for enum_ptrs & reloc_ptrs */
  29. #include "gxfrac.h"        /* for concrete colors */
  30.  
  31. /* Define opaque types. */
  32.  
  33. #ifndef gx_device_color_DEFINED
  34. #  define gx_device_color_DEFINED
  35. typedef struct gx_device_color_s gx_device_color;
  36. #endif
  37.  
  38. #ifndef gx_device_DEFINED
  39. #  define gx_device_DEFINED
  40. typedef struct gx_device_s gx_device;
  41. #endif
  42.  
  43. /* Color space types (classes): */
  44. /*typedef struct gs_color_space_type_s gs_color_space_type;*/
  45. struct gs_color_space_type_s {
  46.  
  47.     gs_color_space_index index;
  48.  
  49.     /* Define the number of components in a color of this space. */
  50.     /* For Pattern spaces, where the number of components depends on */
  51.     /* the underlying space, this value is -1. */
  52.  
  53.     int num_components;
  54.  
  55.     /* Define whether the space can be the base space for */
  56.     /* an Indexed color space or the alternate space for */
  57.     /* a Separation color space. */
  58.  
  59.     bool can_be_base_space;
  60.  
  61.     /* ------ Procedures ------ */
  62.  
  63.     /* Construct the initial color value for this space. */
  64.  
  65. #define cs_proc_init_color(proc)\
  66.   void proc(P2(gs_client_color *, const gs_color_space *))
  67. #define cs_init_color(pcc, pcs)\
  68.   (*(pcs)->type->init_color)(pcc, pcs)
  69. #define cs_full_init_color(pcc, pcs)\
  70.   ((pcc)->pattern = 0, cs_init_color(pcc, pcs))
  71.     cs_proc_init_color((*init_color));
  72.  
  73.     /* Return the concrete color space underlying this one. */
  74.     /* (Not defined for Pattern spaces.) */
  75.  
  76. #define cs_proc_concrete_space(proc)\
  77.   const gs_color_space *proc(P2(const gs_color_space *,\
  78.                 const gs_imager_state *))
  79. #define cs_concrete_space(pcs, pis)\
  80.   (*(pcs)->type->concrete_space)(pcs, pis)
  81.     cs_proc_concrete_space((*concrete_space));
  82.  
  83.     /* Reduce a color to a concrete color. */
  84.     /* (Not defined for Pattern spaces.) */
  85.  
  86. #define cs_proc_concretize_color(proc)\
  87.   int proc(P4(const gs_client_color *, const gs_color_space *,\
  88.     frac *, const gs_imager_state *))
  89.     cs_proc_concretize_color((*concretize_color));
  90.  
  91.     /* Map a concrete color to a device color. */
  92.     /* (Only defined for concrete color spaces.) */
  93.  
  94. #define cs_proc_remap_concrete_color(proc)\
  95.   int proc(P5(const frac *, gx_device_color *, const gs_imager_state *,\
  96.     gx_device *, gs_color_select_t))
  97.     cs_proc_remap_concrete_color((*remap_concrete_color));
  98.  
  99.     /* Map a color directly to a device color. */
  100.  
  101. #define cs_proc_remap_color(proc)\
  102.   int proc(P6(const gs_client_color *, const gs_color_space *,\
  103.     gx_device_color *, const gs_imager_state *, gx_device *,\
  104.     gs_color_select_t))
  105.     cs_proc_remap_color((*remap_color));
  106.  
  107.     /* Install the color space in a graphics state. */
  108.  
  109. #define cs_proc_install_cspace(proc)\
  110.   int proc(P2(gs_color_space *, gs_state *))
  111.     cs_proc_install_cspace((*install_cspace));
  112.  
  113.     /* Adjust reference counts of indirect color space components. */
  114. #define cs_proc_adjust_cspace_count(proc)\
  115.   void proc(P3(const gs_color_space *, gs_memory_t *, int))
  116. #define cs_adjust_cspace_count(pgs, delta)\
  117.   (*(pgs)->color_space->type->adjust_cspace_count)((pgs)->color_space, (pgs)->memory, delta)
  118.     cs_proc_adjust_cspace_count((*adjust_cspace_count));
  119.  
  120.     /* Adjust reference counts of indirect color components. */
  121.  
  122. #define cs_proc_adjust_color_count(proc)\
  123.   void proc(P4(const gs_client_color *, const gs_color_space *, gs_memory_t *, int))
  124. #define cs_adjust_color_count(pgs, delta)\
  125.   (*(pgs)->color_space->type->adjust_color_count)((pgs)->ccolor, (pgs)->color_space, (pgs)->memory, delta)
  126.     cs_proc_adjust_color_count((*adjust_color_count));
  127.  
  128. /* Adjust both reference counts. */
  129. #define cs_adjust_counts(pgs, delta)\
  130.   cs_adjust_color_count(pgs, delta), cs_adjust_cspace_count(pgs, delta)
  131.  
  132.     /* Enumerate the pointers in a color space. */
  133.  
  134.     struct_proc_enum_ptrs((*enum_ptrs));
  135.  
  136.     /* Relocate the pointers in a color space. */
  137.  
  138.     struct_proc_reloc_ptrs((*reloc_ptrs));
  139.  
  140. };
  141. /* Standard color space procedures */
  142. cs_proc_init_color(gx_init_paint_1);
  143. cs_proc_init_color(gx_init_paint_3);
  144. cs_proc_init_color(gx_init_paint_4);
  145. cs_proc_concrete_space(gx_no_concrete_space);
  146. cs_proc_concrete_space(gx_same_concrete_space);
  147. cs_proc_concretize_color(gx_no_concretize_color);
  148. cs_proc_remap_color(gx_default_remap_color);
  149. cs_proc_install_cspace(gx_no_install_cspace);
  150. cs_proc_adjust_cspace_count(gx_no_adjust_cspace_count);
  151. cs_proc_adjust_color_count(gx_no_adjust_color_count);
  152. #define gx_no_cspace_enum_ptrs gs_no_struct_enum_ptrs
  153. #define gx_no_cspace_reloc_ptrs gs_no_struct_reloc_ptrs
  154.  
  155. /* Macro for defining color space procedures. */
  156. #define cs_declare_procs(scope, concretize, install, adjust, enum_p, reloc_p)\
  157.   scope cs_proc_concretize_color(concretize);\
  158.   scope cs_proc_install_cspace(install);\
  159.   scope cs_proc_adjust_cspace_count(adjust);\
  160.   scope struct_proc_enum_ptrs(enum_p);\
  161.   scope struct_proc_reloc_ptrs(reloc_p)
  162.  
  163. /* Standard color space types */
  164. extern const gs_color_space_type
  165.     gs_color_space_type_DeviceGray,
  166.     gs_color_space_type_DeviceRGB,
  167.     gs_color_space_type_DeviceCMYK;
  168.  
  169. /* Define the allocator type for color spaces. */
  170. extern_st(st_color_space);
  171.  
  172. #endif                    /* gxcspace_INCLUDED */
  173.